home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Topik / Topik - Disk 16 - KnowAboutIt (19xx)(Topik Public Domain)(PD)[WB].zip / Topik - Disk 16 - KnowAboutIt (19xx)(Topik Public Domain)(PD)[WB].adf / ExecLib / flam.lib.asm < prev    next >
Assembly Source File  |  1989-09-16  |  1KB  |  54 lines

  1.  
  2. ************************************************************************
  3. *
  4. *       FLam linked library references for flam.library
  5. *       
  6. *       created:  jmf    02-mar-88
  7. *       modified: jmf    04-mar-88  Assemble with MCC macro assembler
  8. *
  9. ************************************************************************
  10.  
  11.  
  12. ******* Included Files *************************************************
  13.  
  14.         include "exec/types.i"
  15.         include "exec/libraries.i"
  16.  
  17.         include "i_asmsupp.i"
  18.         include "i_flamlib.i"
  19.  
  20.  
  21. ******* Exported *******************************************************
  22.  
  23.         XDEF    _fl_Plus
  24.         XDEF    _fl_Minus
  25.  
  26.  
  27. ******* Imported *******************************************************
  28.  
  29.         XREF    _FLamBase
  30.  
  31.  
  32. ************************************************************************
  33. *
  34. *       Standard lib reference hunks
  35. *
  36. ************************************************************************
  37.  
  38.  
  39.         SECTION text,CODE
  40.  
  41.  
  42. _fl_Plus:
  43.         move.l  _FLamBase,a1
  44.         jmp     LIB_FL_PLUS(a1)
  45.  
  46.  
  47. _fl_Minus:
  48.         move.l  _FLamBase,a1
  49.         jmp     LIB_FL_MINUS(a1)
  50.  
  51.  
  52.  
  53.         END
  54.